WHAT IS DATASET IN ADO.NET?
1204
20-Aug-2020
Shrikant Mishra
20-Aug-2020The DataSet:-
That is a collection of DataTables. Where you can use the DataSet type to store many DataTables in a single collection. Theoretically, the DataSet acts as a set of DataTable instances.
or
A DataSet contains DataTableCollection and their DataRelationCollection . That represents a complete set of data including the tables that contain, order, and constrain the data, as well as the relationships between the tables. You can use Dataset in combination with DataAdapter Class.